home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-07-01 | 1.8 KB | 65 lines | [TEXT/MPS ] |
- ; File: E16.Font
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-91
- ; All Rights Reserved
- ;
- ;
- fmDupStartUpErr GEQU $1B01 ; duplicate FMStartUp call
- fmResetErr GEQU $1B02 ; can't reset the Font Manager
- fmNotActiveErr GEQU $1B03 ; Font Manager not active
- fmFamNotFndErr GEQU $1B04 ; family not found
- fmFontNtFndErr GEQU $1B05 ; font not found
- fmFontMemErr GEQU $1B06 ; font not in memory
- fmSysFontErr GEQU $1B07 ; system font cannot be purgeable
- fmBadFamNumErr GEQU $1B08 ; illegal family number
- fmBadSizeErr GEQU $1B09 ; illegal size
- fmBadNameErr GEQU $1B0A ; illegal name length
- fmMenuErr GEQU $1B0B ; fix font menu never called
- fmScaleSizeErr GEQU $1B0C ; scaled size of font exeeds limits
- fmBadParmErr GEQU $1B0D
- chicago GEQU $FFFD
- shaston GEQU $FFFE
- systemFont0 GEQU $0000
- systemFont1 GEQU $0001
- newYork GEQU $0002
- geneva GEQU $0003
- monaco GEQU $0004
- venice GEQU $0005
- london GEQU $0006
- athens GEQU $0007
- sanFrancisco GEQU $0008
- toronto GEQU $0009
- cairo GEQU $000B
- losAngeles GEQU $000C
- zapfDingbats GEQU $000D
- bookman GEQU $000E
- helveticaNarrow GEQU $000F
- palatino GEQU $0010
- zapfChancery GEQU $0012
- times GEQU $0014
- helvetica GEQU $0015
- courier GEQU $0016
- symbol GEQU $0017
- taliesin GEQU $0018
- avanteGarde GEQU $0021
- newCenturySchoolbook GEQU $0022
- baseOnlyBit GEQU $0020 ; FamSpecBits
- notBaseBit GEQU $0020 ; FamStatBits
- memOnlyBit GEQU $0001 ; FontSpecBits
- realOnlyBit GEQU $0002 ; FontSpecBits
- anyFamBit GEQU $0004 ; FontSpecBits
- anyStyleBit GEQU $0008 ; FontSpecBits
- anySizeBit GEQU $0010 ; FontSpecBits
- memBit GEQU $0001 ; FontStatBits
- unrealBit GEQU $0002 ; FontStatBits
- apFamBit GEQU $0004 ; FontStatBits
- apVarBit GEQU $0008 ; FontStatBits
- purgeBit GEQU $0010 ; FontStatBits
- notDiskBit GEQU $0020 ; FontStatBits
- notFoundBit GEQU $8000 ; FontStatBits
- dontScaleBit GEQU $0001 ; Scale Word
- ; offset constants for FontStatRec
- oresultID GEQU 0
- oresultStats GEQU 4
-